home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet multimedia / Muzyka / Edytory sampli (probek dzwieku) / ZynAddSubFX_2.2.0 / Setup_ZynAddSubFX-2.2.0.exe / source code / Effects / Phaser.C < prev    next >
C/C++ Source or Header  |  2005-03-14  |  6KB  |  261 lines

  1. /*
  2.   ZynAddSubFX - a software synthesizer
  3.  
  4.   Phaser.C - Phaser effect
  5.   Copyright (C) 2002-2005 Nasca Octavian Paul
  6.   Author: Nasca Octavian Paul
  7.  
  8.   This program is free software; you can redistribute it and/or modify
  9.   it under the terms of version 2 of the GNU General Public License 
  10.   as published by the Free Software Foundation.
  11.  
  12.   This program is distributed in the hope that it will be useful,
  13.   but WITHOUT ANY WARRANTY; without even the implied warranty of
  14.   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15.   GNU General Public License (version 2) for more details.
  16.  
  17.   You should have received a copy of the GNU General Public License (version 2)
  18.   along with this program; if not, write to the Free Software Foundation,
  19.   Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
  20.  
  21. */
  22.  
  23. #include <math.h>
  24. #include "Phaser.h"
  25. #include <stdio.h>
  26. #define PHASER_LFO_SHAPE 2
  27.  
  28. Phaser::Phaser(int insertion_,REALTYPE *efxoutl_,REALTYPE *efxoutr_){
  29.     efxoutl=efxoutl_;
  30.     efxoutr=efxoutr_;
  31.     filterpars=NULL;
  32.         
  33.     oldl=NULL;
  34.     oldr=NULL;
  35.     insertion=insertion_;
  36.  
  37.     Ppreset=0;
  38.     setpreset(Ppreset);
  39.     cleanup();
  40. };
  41.  
  42. Phaser::~Phaser(){
  43.     if (oldl!=NULL) delete [] oldl;
  44.     if (oldr!=NULL) delete [] oldr;
  45. };
  46.  
  47.  
  48. /*
  49.  * Effect output
  50.  */
  51. void Phaser::out(REALTYPE *smpsl,REALTYPE *smpsr){
  52.     int i,j;
  53.     REALTYPE lfol,lfor,lgain,rgain,tmp;
  54.  
  55.     lfo.effectlfoout(&lfol,&lfor);
  56.     lgain=lfol;
  57.     rgain=lfor;
  58.     lgain=(exp(lgain*PHASER_LFO_SHAPE)-1)/(exp(PHASER_LFO_SHAPE)-1.0);
  59.     rgain=(exp(rgain*PHASER_LFO_SHAPE)-1)/(exp(PHASER_LFO_SHAPE)-1.0);
  60.  
  61.  
  62.     lgain=1.0-phase*(1.0-depth)-(1.0-phase)*lgain*depth;
  63.     rgain=1.0-phase*(1.0-depth)-(1.0-phase)*rgain*depth;
  64.     
  65.     if (lgain>1.0) lgain=1.0;else if (lgain<0.0) lgain=0.0;
  66.     if (rgain>1.0) rgain=1.0;else if (rgain<0.0) rgain=0.0;
  67.  
  68.     for (i=0;i<SOUND_BUFFER_SIZE;i++){    
  69.     REALTYPE x=(REALTYPE) i /SOUND_BUFFER_SIZE;
  70.     REALTYPE x1=1.0-x;
  71.     REALTYPE gl=lgain*x+oldlgain*x1;
  72.     REALTYPE gr=rgain*x+oldrgain*x1;
  73.     REALTYPE inl=smpsl[i]*panning+fbl;
  74.     REALTYPE inr=smpsr[i]*(1.0-panning)+fbr;
  75.  
  76.     //Left channel
  77.     for (j=0;j<Pstages*2;j++){//Phasing routine
  78.         tmp=oldl[j];
  79.         oldl[j]=gl*tmp+inl;
  80.         inl=tmp-gl*oldl[j];
  81.     };
  82.     //Right channel
  83.     for (j=0;j<Pstages*2;j++){//Phasing routine
  84.         tmp=oldr[j];
  85.         oldr[j]=gr*tmp+inr;
  86.         inr=tmp-gr*oldr[j];
  87.     };
  88.     //Left/Right crossing
  89.     REALTYPE l=inl;
  90.     REALTYPE r=inr;
  91.     inl=l*(1.0-lrcross)+r*lrcross;
  92.     inr=r*(1.0-lrcross)+l*lrcross;
  93.     
  94.     fbl=inl*fb;
  95.     fbr=inr*fb;
  96.     efxoutl[i]=inl;
  97.     efxoutr[i]=inr;
  98.  
  99.     };
  100.  
  101.     oldlgain=lgain; oldrgain=rgain;
  102.  
  103.     if (Poutsub!=0)
  104.     for (i=0;i<SOUND_BUFFER_SIZE;i++){
  105.             efxoutl[i]*= -1.0;
  106.             efxoutr[i]*= -1.0;
  107.     };
  108.  
  109. };
  110.  
  111. /*
  112.  * Cleanup the effect
  113.  */
  114. void Phaser::cleanup(){
  115.     fbl=0.0;fbr=0.0;
  116.     oldlgain=0.0;
  117.     oldrgain=0.0;
  118.     for (int i=0;i<Pstages*2;i++) {
  119.     oldl[i]=0.0;
  120.     oldr[i]=0.0;
  121.     };
  122. };
  123.  
  124. /*
  125.  * Parameter control
  126.  */
  127. void Phaser::setdepth(unsigned char Pdepth){
  128.     this->Pdepth=Pdepth;
  129.     depth=(Pdepth/127.0);
  130. };
  131.  
  132.  
  133. void Phaser::setfb(unsigned char Pfb){
  134.     this->Pfb=Pfb;
  135.     fb=(Pfb-64.0)/64.1;
  136. };
  137.  
  138. void Phaser::setvolume(unsigned char Pvolume){
  139.     this->Pvolume=Pvolume;
  140.     outvolume=Pvolume/127.0;
  141.     if (insertion==0) volume=1.0;
  142.     else volume=outvolume;
  143. };
  144.  
  145. void Phaser::setpanning(unsigned char Ppanning){
  146.     this->Ppanning=Ppanning;
  147.     panning=Ppanning/127.0;
  148. };
  149.  
  150. void Phaser::setlrcross(unsigned char Plrcross){
  151.     this->Plrcross=Plrcross;
  152.     lrcross=Plrcross/127.0;
  153. };
  154.  
  155. void Phaser::setstages(unsigned char Pstages){
  156.     if (oldl!=NULL) delete [] oldl;
  157.     if (oldr!=NULL) delete [] oldr;
  158.     if (Pstages>=MAX_PHASER_STAGES) Pstages=MAX_PHASER_STAGES-1;
  159.     this->Pstages=Pstages;
  160.     oldl=new REALTYPE[Pstages*2];
  161.     oldr=new REALTYPE[Pstages*2];
  162.     cleanup();
  163. };
  164.  
  165. void Phaser::setphase(unsigned char Pphase){
  166.     this->Pphase=Pphase;
  167.     phase=(Pphase/127.0);
  168. };
  169.  
  170.  
  171. void Phaser::setpreset(unsigned char npreset){
  172.     const int PRESET_SIZE=12;
  173.     const int NUM_PRESETS=6;
  174.     unsigned char presets[NUM_PRESETS][PRESET_SIZE]={
  175.     //Phaser1
  176.     {64,64,36,0,0,64,110,64,1,0,0,20},
  177.     //Phaser2
  178.     {64,64,35,0,0,88,40,64,3,0,0,20},
  179.     //Phaser3
  180.     {64,64,31,0,0,66,68,107,2,0,0,20},
  181.     //Phaser4
  182.     {39,64,22,0,0,66,67,10,5,0,1,20},
  183.     //Phaser5
  184.     {64,64,20,0,1,110,67,78,10,0,0,20},
  185.     //Phaser6
  186.     {64,64,53,100,0,58,37,78,3,0,0,20}};
  187.     if (npreset>=NUM_PRESETS) npreset=NUM_PRESETS-1;
  188.     for (int n=0;n<PRESET_SIZE;n++) changepar(n,presets[npreset][n]);
  189.     Ppreset=npreset;
  190. };
  191.  
  192.  
  193. void Phaser::changepar(int npar,unsigned char value){
  194.     switch(npar){
  195.     case 0:    setvolume(value);
  196.             break;
  197.     case 1:    setpanning(value);
  198.             break;
  199.     case 2:    lfo.Pfreq=value;
  200.             lfo.updateparams();
  201.         break;    
  202.     case 3:    lfo.Prandomness=value;
  203.             lfo.updateparams();
  204.         break;    
  205.     case 4:    lfo.PLFOtype=value;
  206.             lfo.updateparams();
  207.         break;    
  208.     case 5:    lfo.Pstereo=value;
  209.             lfo.updateparams();
  210.         break;    
  211.     case 6:    setdepth(value);
  212.             break;
  213.     case 7:    setfb(value);
  214.             break;
  215.     case 8:    setstages(value);
  216.             break;
  217.     case 9:    setlrcross(value);
  218.             break;
  219.     case 10:if (value>1) value=1;
  220.         Poutsub=value;
  221.         break;
  222.     case 11:setphase(value);
  223.             break;
  224.     };
  225. };
  226.  
  227. unsigned char Phaser::getpar(int npar){
  228.     switch (npar){
  229.     case 0:    return(Pvolume);
  230.         break;
  231.     case 1:    return(Ppanning);
  232.         break;
  233.     case 2:    return(lfo.Pfreq);
  234.         break;
  235.     case 3:    return(lfo.Prandomness);
  236.         break;
  237.     case 4:    return(lfo.PLFOtype);
  238.         break;
  239.     case 5:    return(lfo.Pstereo);
  240.         break;
  241.     case 6:    return(Pdepth);
  242.         break;
  243.     case 7:    return(Pfb);
  244.         break;
  245.     case 8:    return(Pstages);
  246.         break;
  247.     case 9:    return(Plrcross);
  248.         break;
  249.     case 10:return(Poutsub);
  250.         break;
  251.     case 11:return(Pphase);
  252.         break;
  253.     default:return (0);
  254.     };
  255.     
  256. };
  257.  
  258.  
  259.  
  260.  
  261.